home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / init.d / esound < prev    next >
Text File  |  2005-10-20  |  857b  |  28 lines

  1. #!/sbin/runscript
  2. # Copyright 1999-2004 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: /var/cvsroot/gentoo-x86/media-sound/esound/files/esound.init.d,v 1.5 2004/07/14 22:47:41 agriffis Exp $
  5.  
  6. # Note: You need to start esound on boot, only if you want to use it over network.
  7.  
  8. # Warning: To use global esound daemon, you must also set spawn_options
  9. # in /etc/esd/esd.conf to the same protocol (i. e. add "-tcp") and unset
  10. # "Enable sound server startup" in gnome-sound-properties for all users
  11. # and optionally handle authentization.
  12.  
  13. depend() {
  14.     use net portmap
  15. }
  16.  
  17. start() {
  18.     ebegin "Starting esound"
  19.     start-stop-daemon --start --quiet --background --exec /usr/bin/esd -- $ESD_START $ESD_OPTIONS
  20.     eend $?
  21. }
  22.  
  23. stop() {
  24.     ebegin "Stopping esound"
  25.     start-stop-daemon --stop --quiet --exec /usr/bin/esd
  26.     eend $?
  27. }
  28.